Skip to content

Instantly share code, notes, and snippets.

@gipert
gipert / itunes-on-arch-linux-guide.md
Created May 10, 2020 00:49
iTunes on (Arch) Linux: installation guide

Prerequisites

  1. Enable the multilib repository by editing /etc/pacman.conf
  2. Install WineHQ and some other optional dependencies:
    $ pacman -Syu wine
    $ pacman -S --asdeps lib32-mpg123 lib32-gnutls {lib32-,}gst-plugins-base-libs \
                         lib32-alsa-plugins lib32-libpulse lib32-openal
    $ yay -S lib32-unixodbc # or your favourite AUR helper
  3. We'll install a 64-bit version of iTunes, so no need to set WINEARCH
@Jekins
Jekins / Markdown-docs.md
Last active May 16, 2026 05:18
Руководство по оформлению Markdown файлов

Руководство по оформлению Markdown файлов

Markdown - это облегчённый язык разметки, который преобразует текст в структурированный HTML. Следующее руководство поможет вам разобраться, как использовать Markdown.

Заголовки

# Заголовок первого уровня
## Заголовок второго уровня
### Заголовок третьего уровня
#### Заголовок четвёртого уровня
##### Заголовок пятого уровня
@ongkiii
ongkiii / IPA-Sources.md
Last active May 16, 2026 05:17
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@jedi4ever
jedi4ever / cs.sh
Last active May 16, 2026 05:15
Simple script to run claude headless without the -p (to avoid extra costs)
#!/usr/bin/env bash
# Usage: ./cs "your prompt"
# Runs Claude headlessly, suppresses the TUI, prints Claude's final reply on stdout.
set -uo pipefail
PROMPT="$*"
REPLY_FILE=$(mktemp)
SESSION_ID=$(uuidgen | tr 'A-Z' 'a-z')
ENC_CWD=$(pwd | sed 's|/|-|g')
@sgmedev
sgmedev / 1. unregister_commands.py
Last active May 16, 2026 05:14
Script to unregister Discord application commands
#!/usr/bin/python3
"""Script to unregister discord application commands"""
import sys
from getpass import getpass
from time import sleep
import requests
verbose = "-v" in sys.argv
application_id = input("Application ID: ")
@jpassaro
jpassaro / 00-unicode-cheat-sheet.md
Last active May 16, 2026 05:12
Unicode cheat sheet

Unicode cheat sheet

A curated list of unicode characters I want to have quick reference toward, including their literal presentation (where possible), description from the unicode table, various representations, and how to enter it as a Vim digraph*.

They are grouped by category, including a link to the relevant Unicode block. Also see the full list of Unicode blocks

@PaulMColeman
PaulMColeman / DEPLOYMENT.md
Last active May 16, 2026 05:12
Fluxer self-hosted deployment guide (refactor branch) — 20 gotchas documented

Fluxer Self-Hosted Deployment Guide

Deployment log for Fluxer on fluxer.mydomain.net — a free, open-source Discord alternative (AGPLv3).

Architecture

Fluxer runs as a monolith Docker Compose stack with 6 containers:

Container Image Purpose
@Tombert
Tombert / configuration.nix
Created June 8, 2024 03:06
My Nixos gamescope setup.
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page, on
# https://search.nixos.org/options and in the NixOS manual (`nixos-help`).
{ config, lib, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration.nix

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.